*{
    font-family: '华文细黑';
}

html{
    height: 100%;
}

body{
    background-color: rgb(44, 78, 139);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
}

#canvas{
    background-color: rgb(228, 228, 228);
    box-shadow: 0px 3px 15px rgb(22, 42, 79);
    border-radius: 10px;
    padding: 10px;
    min-width: 1000px;
    min-height: 600px;
}

.tile-name{
    font-size: 10px;
    cursor: default;
    opacity: 0.5;
}

#description{
    color: white;
    margin-bottom: 20px;
}

#title{
    color: white;
    font-size: 30px;
}

.tile:hover{
    stroke: black;
    stroke-width: 2px;
}

#tooltip{
    visibility: hidden;
    font-size: 12px;
    background-color: white;
    position: absolute;
    opacity: 0.7;
}

#legend {
    font-size: 15px;
    fill: white;
    margin-top: 1rem;
    min-width: 1000px;
}